UNPKG

fui-fancyui

Version:
34 lines (31 loc) 675 B
import { styled as s, css as a } from "styled-components"; const e = s.div` display: flex; justify-content: space-around; align-items: center; gap: ${({ theme: i }) => i.spacing.xs}; margin: 0 12px; `, r = s.div` display: flex; width: 100%; justify-content: space-around; align-items: center; `, p = s.div` display: flex; flex-shrink: 1; aspect-ratio: 1/1; ${({ $align: i, theme: t }) => i === "right" ? a` margin-left: ${t.spacing.xxs}; ` : a` margin-right: ${t.spacing.xxs}; `} svg { display: flex; aspect-ratio: 1/1; } `; export { p as IconWrapper, r as NumberList, e as StyledPaginator };