add icon and accept only size

This commit is contained in:
Pavel Prichodko 2023-01-17 16:01:33 +01:00
parent 87957c1611
commit c39f7f36c8
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
5 changed files with 35 additions and 6 deletions

View File

@ -1,2 +1,4 @@
export { LockedIcon } from './lock-icon'
export { MembersIcon } from './members-icon'
export { OptionsIcon } from './options-icon'
export type { IconProps } from './types'

View File

@ -0,0 +1,24 @@
import type { IconProps } from './types'
export function LockedIcon(props: IconProps) {
const { color = 'currentColor', size = 20, ...rest } = props
// FIXME: not need to differentiate sizes in the designs
return (
<svg
width={size}
height={size}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...rest}
>
<path
fillRule="evenodd"
clipRule="evenodd"
d="M8 .9h-.012c-.081 0-.137 0-.186.002a3 3 0 00-2.9 2.9c-.002.05-.002.105-.002.186v1.175a3.6 3.6 0 00-2.127 2.405c-.123.46-.123.998-.123 1.832v.2c0 .834 0 1.373.123 1.832a3.6 3.6 0 002.545 2.545c.46.123.998.123 1.832.123H8.85c.834 0 1.373 0 1.832-.123a3.6 3.6 0 002.545-2.545c.123-.46.123-.998.123-1.832v-.2c0-.834 0-1.373-.123-1.832A3.6 3.6 0 0011.1 5.163V3.988c0-.081 0-.137-.002-.186A3 3 0 008.012.9H8zm.75 5.2h-1.5c-.969 0-1.335.005-1.621.082a2.4 2.4 0 00-1.697 1.697c-.077.286-.082.652-.082 1.621s.005 1.335.082 1.621a2.4 2.4 0 001.697 1.697c.286.077.652.082 1.621.082h1.5c.969 0 1.335-.005 1.621-.082a2.4 2.4 0 001.697-1.697c.077-.286.082-.652.082-1.621s-.005-1.335-.082-1.621a2.4 2.4 0 00-1.697-1.697C10.085 6.105 9.72 6.1 8.75 6.1zm.288-1.2H9.9V4v-.159a1.8 1.8 0 00-1.741-1.74 5.726 5.726 0 00-.318 0 1.8 1.8 0 00-1.74 1.74V4.9H9.037zM7.4 8.25h1.2v2.5H7.4v-2.5z"
fill={color}
/>
</svg>
)
}

View File

@ -1,12 +1,12 @@
import type { IconProps } from './types'
export function MembersIcon(props: IconProps) {
const { color = 'currentColor', ...rest } = props
const { color = 'currentColor', size = 20, ...rest } = props
return (
<svg
width={20}
height={20}
width={size}
height={size}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"

View File

@ -1,12 +1,12 @@
import type { IconProps } from './types'
export function OptionsIcon(props: IconProps) {
const { color = 'currentColor', ...rest } = props
const { color = 'currentColor', size = 20, ...rest } = props
return (
<svg
width={20}
height={20}
width={size}
height={size}
viewBox="0 0 20 20"
fill="none"
xmlns="http://www.w3.org/2000/svg"

View File

@ -2,5 +2,8 @@ import type { SVGAttributes } from 'react'
export interface IconProps extends SVGAttributes<SVGElement> {
children?: never
width?: never
height?: never
color?: string
size?: number
}